home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gxpcache.h < prev    next >
C/C++ Source or Header  |  1997-02-15  |  2KB  |  53 lines

  1. /* Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxpcache.h */
  20. /* Definition of Pattern cache */
  21.  
  22. #ifndef gxpcache_INCLUDED
  23. #  define gxpcache_INCLUDED
  24.  
  25. /*
  26.  * Define a cache for rendered Patterns.  This is currently an open
  27.  * hash table with single probing (no reprobing) and round-robin
  28.  * replacement.  Obviously, we can do better in both areas.
  29.  */
  30. #ifndef gx_pattern_cache_DEFINED
  31. #  define gx_pattern_cache_DEFINED
  32. typedef struct gx_pattern_cache_s gx_pattern_cache;
  33. #endif
  34. #ifndef gx_color_tile_DEFINED
  35. #  define gx_color_tile_DEFINED
  36. typedef struct gx_color_tile_s gx_color_tile;
  37. #endif
  38. struct gx_pattern_cache_s {
  39.     gs_memory_t *memory;
  40.     gx_color_tile *tiles;
  41.     uint num_tiles;
  42.     uint tiles_used;
  43.     uint next;        /* round-robin index */
  44.     ulong bits_used;
  45.     ulong max_bits;
  46.     void (*free_all)(P1(gx_pattern_cache *));
  47. };
  48. #define private_st_pattern_cache() /* in gxpcmap.c */\
  49.   gs_private_st_ptrs1(st_pattern_cache, gx_pattern_cache,\
  50.     "gx_pattern_cache", pattern_cache_enum, pattern_cache_reloc, tiles)
  51.  
  52. #endif                    /* gxpcache_INCLUDED */
  53.